Nant COM Reference [migrated]
Posted
by
user29286
on Programmers
See other posts from Programmers
or by user29286
Published on 2011-06-28T14:55:34Z
Indexed on
2011/06/28
16:30 UTC
Read the original article
Hit count: 527
builds
I'm trying to find the Nant syntax for including a COM reference.
The current Nant script with the normal dll reference looks like ..
<references>
<include name="${external-lib}/System.Interop.AppName.dll" />
The COM reference in the .csproj file looks like this ...
<COMReference Include="System.Interop.AppName">
<Guid>{00020813-0000-0000-C000-000000000046}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>7</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
</COMReference>
What syntax should I use in Nant to swap to the COM reference to do the build ?
© Programmers or respective owner